home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY3 / POV301 / povray3 / docsdemo / pov / blobdem2 < prev    next >
Text File  |  1997-01-21  |  474b  |  32 lines

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. #include "colors.inc"
  7.  
  8. camera { 
  9.   angle 15
  10.   location <0,2,-10>
  11.   look_at <0,0,0>
  12. }
  13.  
  14. light_source { <10, 20, -10> color White }
  15.  
  16. blob {
  17.   threshold .65
  18.   sphere { <.5,0,0>, .8, 1 pigment {Blue} }
  19.   sphere { <-.5,0,0>,.8, 1 pigment {Pink} }
  20.   
  21.   finish { phong 1 }
  22. }
  23.  
  24. sphere { <.5,0,0>, .8
  25.   pigment { Yellow transmit .75 }
  26. }
  27.  
  28. sphere { <-.5,0,0>, .8
  29.   pigment { Green transmit .75 }
  30. }
  31.  
  32.